VScode 设置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"files.autoSave": "onWindowChange",
"workbench.iconTheme": "material-icon-theme",
"editor.tabSize": 4,
"emmet.triggerExpansionOnTab": true,
"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"wxml": "html"
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"vue": "html",
"vue-html": "html"
},
"files.associations": {
"*.wxml": "wxml",
"*.wxss": "css",
"*.wxs": "javascript",
"*.wpy": "html",
"*.vue": "vue"
},
"minapp-vscode.disableAutoConfig": true,
"minapp-vscode.wxmlQuoteStyle": "'",
"emmet.optimizeStylesheetParsing": false,
"eslint.autoFixOnSave": true,
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"eslint.validate": [
"javascript",{
"language": "vue",
"autoFix": true
},"html","vue"
],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
},
"window.zoomLevel": 0
}